home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / SheepTeroids.swf / scripts / frame_28 / PlaceObject2_116_6 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2005-08-05  |  245 b   |  15 lines

  1. onClipEvent(enterFrame){
  2.    _root.shipMove();
  3.    _root.bulletsMove();
  4.    _root.rocksMove();
  5.    _root.checkHits();
  6.    if(Key.isDown(39))
  7.    {
  8.       _root.shipTurn(6);
  9.    }
  10.    if(Key.isDown(37))
  11.    {
  12.       _root.shipTurn(-6);
  13.    }
  14. }
  15.